/* Fuente general y fondo */
body {
  font-family: Arial, sans-serif;
  background: #f3f5f7;
  margin: 0;
  padding: 40px;
  color: #333;
}

/* Contenedor */
.nav-container {
  max-width: 600px;
  margin: auto;
  text-align: center;
}

/* Lista del menú */
.nav {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.nav li {
  display: inline-block;
  margin: 0 15px;
}

/* Icono base (sprite general) */
#home, #prev, #next {
  width: 46px;
  height: 44px;
  background: url('../IMG/FLOR.jpg') no-repeat;
  background-size: 50px 50px; /* ancho x alto */
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

#home:hover,
#prev:hover,
#next:hover {
  transform: scale(1.1);
}

/* Posiciones específicas */
#home {
  background-position: 0 0;
}

#home a:hover {
  width: 46px;
  height: 44px;
  background: url('../IMG/BOSQUE.jpg') 0 -1px no-repeat;
  background-size: 50px 50px; /* ancho x alto */
   transform: scale(1.1);
}

#prev a:hover {
  width: 46px;
  height: 44px;
  background: url('../IMG/BOTAS.jpg') 0 -1px no-repeat;
  background-size: 50px 50px; /* ancho x alto */
   transform: scale(1.1);
}

#next a:hover {
  width: 46px;
  height: 44px;
  background: url('../IMG/1.jpeg') 0 -1px no-repeat;
  background-size: 50px 50px; /* ancho x alto */
   transform: scale(1.1);
}

/* Anclas vacías ocupan el espacio del ícono */
.nav a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px; /* ocultar texto */
}



